GD and Image Functions
PHP Manual

imagecreatefromgd2

(PHP 4 >= 4.0.7, PHP 5)

imagecreatefromgd2Create a new image from GD2 file or URL

Descripción

resource imagecreatefromgd2 ( string $filename )

Create a new image from GD2 file or URL.

Tip

Puede usar una URL como nombre de archivo con esta función si los fopen wrappers han sido activados. Consulte fopen() para más detalles sobre cómo especificar el nombre de fichero y Lista de Protocolos/Envolturas Soportadas una lista de protocolos URL soportados

Lista de parámetros

filename

Path to the GD2 image.

Valores retornados

Returns an image resource identifier on success, FALSE on errors.

Ejemplos

Example #1 imagecreatefromgd2() example

<?php
// Load the gd2 image
$im imagecreatefromgd2('./test.gd2');

// Apply an effect on the image, in this 
// case negate the image if PHP5+
if(function_exists('imagefilter'))
{
    
imagefilter($imIMG_FILTER_NEGATE);
}

// Save the image
imagegd2($im'./test_updated.gd2');
imagedestroy($im);
?>

Notes

Note: Esta funcion requiere GD 2.0.1 o posterior.

Warning

Versiones de PHP para Windows anteriores a 4.3.0, no soportan el acceso remoto a archivos para esta función, no funcionará ni activando siquiera allow_url_fopen.


GD and Image Functions
PHP Manual